home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / alpha.arc / TCPCMD.C < prev    next >
C/C++ Source or Header  |  1988-04-26  |  6KB  |  296 lines

  1. #include <stdio.h>
  2. #include "global.h"
  3. #include "timer.h"
  4. #include "mbuf.h"
  5. #include "netuser.h"
  6. #include "internet.h"
  7. #include "tcp.h"
  8. #include "cmdparse.h"
  9.  
  10. /* TCP connection states */
  11. char *tcpstates[] = {
  12.     "Closed",
  13.     "Listen",
  14.     "SYN sent",
  15.     "SYN received",
  16.     "Established",
  17.     "FIN wait 1",
  18.     "FIN wait 2",
  19.     "Close wait",
  20.     "Closing",
  21.     "Last ACK",
  22.     "Time wait"
  23. };
  24.  
  25. /* TCP closing reasons */
  26. char *reasons[] = {
  27.     "Normal",
  28.     "Reset",
  29.     "Timeout",
  30.     "ICMP"
  31. };
  32. /* TCP subcommand table */
  33. int domss(),doirtt(),dortt(),dotcpstat(),dowindow(),dotcpkick(),dotcpreset();
  34. struct cmds tcpcmds[] = {
  35.     "irtt",        doirtt,        0,    NULLCHAR,    NULLCHAR,
  36.     "kick",        dotcpkick,    2,    "tcp kick <tcb>",
  37.         NULLCHAR,
  38.     "mss",        domss,        0,    NULLCHAR,    NULLCHAR,
  39.     "reset",    dotcpreset,    2,    "tcp reset <tcb>",
  40.         NULLCHAR,
  41.     "rtt",        dortt,        3,    "tcp rtt <tcb> <val>",
  42.         NULLCHAR,
  43.     "status",    dotcpstat,    0,    NULLCHAR,    NULLCHAR,
  44.     "window",    dowindow,    0,    NULLCHAR,    NULLCHAR,
  45.     NULLCHAR,    NULLFP,        0,
  46.         "tcp subcommands: irtt kick mss reset rtt status window",
  47.         NULLCHAR,
  48. };
  49. int
  50. dotcp(argc,argv)
  51. int argc;
  52. char *argv[];
  53. {
  54.     return subcmd(tcpcmds,argc,argv);
  55. }
  56.  
  57. /* Eliminate a TCP connection */
  58. static int
  59. dotcpreset(argc,argv)
  60. int argc;
  61. char *argv[];
  62. {
  63.     register struct tcb *tcb;
  64.     extern char notval[];
  65.  
  66.     tcb = (struct tcb *)htol(argv[1]);
  67.     if(!tcpval(tcb)){
  68.         printf(notval);
  69.         return 1;
  70.     }
  71.     close_self(tcb,RESET);
  72.     return 0;
  73. }
  74.  
  75. /* Set initial round trip time for new connections */
  76. static int
  77. doirtt(argc,argv)
  78. int argc;
  79. char *argv[];
  80. {
  81.     if(argc < 2)
  82.         printf("%lu\n",tcp_irtt);
  83.     else
  84.         tcp_irtt = atol(argv[1]);
  85.     return 0;
  86. }
  87.  
  88. /* Set smoothed round trip time for specified TCB */
  89. static int
  90. dortt(argc,argv)
  91. int argc;
  92. char *argv[];
  93. {
  94.     register struct tcb *tcb;
  95.     extern char notval[];
  96.  
  97.     tcb = (struct tcb *)htol(argv[1]);
  98.     if(!tcpval(tcb)){
  99.         printf(notval);
  100.         return 1;
  101.     }
  102.     tcb->srtt = atol(argv[2]);
  103.     return 0;
  104. }
  105.  
  106. /* Force a retransmission */
  107. static int
  108. dotcpkick(argc,argv)
  109. int argc;
  110. char *argv[];
  111. {
  112.     register struct tcb *tcb;
  113.     extern char notval[];
  114.  
  115.     tcb = (struct tcb *)htol(argv[1]);
  116.     if(kick_tcp(tcb) == -1){
  117.         printf(notval);
  118.         return 1;
  119.     }
  120.     return 0;
  121. }
  122.  
  123. /* Set default maximum segment size */
  124. static int
  125. domss(argc,argv)
  126. int argc;
  127. char *argv[];
  128. {
  129.     if(argc < 2)
  130.         printf("%u\n",tcp_mss);
  131.     else
  132.         tcp_mss = atoi(argv[1]);
  133.     return 0;
  134. }
  135.  
  136. /* Set default window size */
  137. static int
  138. dowindow(argc,argv)
  139. int argc;
  140. char *argv[];
  141. {
  142.     if(argc < 2)
  143.         printf("%u\n",tcp_window);
  144.     else
  145.         tcp_window = atoi(argv[1]);
  146.     return 0;
  147. }
  148.  
  149. /* Display status of TCBs */
  150. static int
  151. dotcpstat(argc,argv)
  152. int argc;
  153. char *argv[];
  154. {
  155.     register struct tcb *tcb;
  156.     extern char notval[];
  157.  
  158.     if(argc < 2){
  159.         tstat();
  160.     } else {
  161.         tcb = (struct tcb *)htol(argv[1]);
  162.         if(tcpval(tcb))
  163.             state_tcp(tcb);
  164.         else
  165.             printf(notval);
  166.     }
  167.     return 0;
  168. }
  169.  
  170. /* Dump TCP stats and summary of all TCBs
  171. /*     &TCB Rcv-Q Snd-Q  Local socket           Remote socket          State
  172.  *     1234     0     0  xxx.xxx.xxx.xxx:xxxxx  xxx.xxx.xxx.xxx:xxxxx  Established
  173.  */
  174. static int
  175. tstat()
  176. {
  177.     register int i;
  178.     register struct tcb *tcb;
  179.     char *psocket();
  180.  
  181.     printf("conout %u conin %u reset out %u runt %u chksum err %u bdcsts %u\n",
  182.         tcp_stat.conout,tcp_stat.conin,tcp_stat.resets,tcp_stat.runt,
  183.         tcp_stat.checksum,tcp_stat.bdcsts);
  184.     printf("    &TCB Rcv-Q Snd-Q  Local socket           Remote socket          State\n");
  185.     for(i=0;i<NTCB;i++){
  186.         for(tcb=tcbs[i];tcb != NULLTCB;tcb = tcb->next){
  187.             printf("%8lx%6u%6u  ",(long)tcb,tcb->rcvcnt,tcb->sndcnt);
  188.             printf("%-23s",psocket(&tcb->conn.local));
  189.             printf("%-23s",psocket(&tcb->conn.remote));
  190.             printf("%-s",tcpstates[tcb->state]);
  191.             if(tcb->state == LISTEN && (tcb->flags & CLONE))
  192.                 printf(" (S)");
  193.             printf("\n");
  194.         }
  195.     }
  196.     fflush(stdout);
  197.     return 0;
  198. }
  199. /* Dump a TCP control block in detail */
  200. static void
  201. state_tcp(tcb)
  202. struct tcb *tcb;
  203. {
  204.     int32 sent,recvd;
  205.  
  206.     if(tcb == NULLTCB)
  207.         return;
  208.     /* Compute total data sent and received; take out SYN and FIN */
  209.     sent = tcb->snd.una - tcb->iss;    /* Acknowledged data only */
  210.     recvd = tcb->rcv.nxt - tcb->irs;
  211.     switch(tcb->state){
  212.     case LISTEN:
  213.     case SYN_SENT:        /* Nothing received or acked yet */
  214.         sent = recvd = 0;    
  215.         break;
  216.     case SYN_RECEIVED:
  217.         recvd--;    /* Got SYN, no data acked yet */
  218.         sent = 0;
  219.         break;
  220.     case ESTABLISHED:    /* Got and sent SYN */
  221.     case FINWAIT1:        /* FIN not acked yet */
  222.         sent--;
  223.         recvd--;
  224.         break;
  225.     case FINWAIT2:        /* Our SYN and FIN both acked */
  226.         sent -= 2;
  227.         recvd--;
  228.         break;
  229.     case CLOSE_WAIT:    /* Got SYN and FIN, our FIN not yet acked */
  230.     case CLOSING:
  231.     case LAST_ACK:
  232.         sent--;
  233.         recvd -= 2;
  234.         break;
  235.     case TIME_WAIT:        /* Sent and received SYN/FIN, all acked */
  236.         sent -= 2;
  237.         recvd -= 2;
  238.         break;
  239.     }
  240.     printf("Local: %s",psocket(&tcb->conn.local));
  241.     printf(" Remote: %s",psocket(&tcb->conn.remote));
  242.     printf(" State: %s\n",tcpstates[tcb->state]);
  243.     printf("      Init seq    Unack     Next Resent CWind Thrsh  Wind  MSS Queue      Total\n");
  244.     printf("Send:");
  245.     printf("%9lx",tcb->iss);
  246.     printf("%9lx",tcb->snd.una);
  247.     printf("%9lx",tcb->snd.nxt);
  248.     printf("%7lu",tcb->resent);
  249.     printf("%6u",tcb->cwind);
  250.     printf("%6u",tcb->ssthresh);
  251.     printf("%6u",tcb->snd.wnd);
  252.     printf("%5u",tcb->mss);
  253.     printf("%6u",tcb->sndcnt);
  254.     printf("%11lu\n",sent);
  255.  
  256.     printf("Recv:");
  257.     printf("%9lx",tcb->irs);
  258.     printf("         ");
  259.     printf("%9lx",tcb->rcv.nxt);
  260.     printf("%7lu",tcb->rerecv);
  261.     printf("      ");
  262.     printf("      ");
  263.     printf("%6u",tcb->rcv.wnd);
  264.     printf("     ");
  265.     printf("%6u",tcb->rcvcnt);
  266.     printf("%11lu\n",recvd);
  267.  
  268.     if(tcb->reseq != (struct reseq *)NULL){
  269.         register struct reseq *rp;
  270.  
  271.         printf("Reassembly queue:\n");
  272.         for(rp = tcb->reseq;rp != (struct reseq *)NULL; rp = rp->next){
  273.             printf("  seq x%lx %u bytes\n",rp->seg.seq,rp->length);
  274.         }
  275.     }
  276.     if(tcb->backoff > 0)
  277.         printf("Backoff %u ",tcb->backoff);
  278.     if(tcb->flags & RETRAN)
  279.         printf("Retrying ");
  280.     switch(tcb->timer.state){
  281.     case TIMER_STOP:
  282.         printf("Timer stopped ");
  283.         break;
  284.     case TIMER_RUN:
  285.         printf("Timer running (%ld/%ld ms) ",
  286.          (long)MSPTICK * (tcb->timer.start - tcb->timer.count),
  287.          (long)MSPTICK * tcb->timer.start);
  288.         break;
  289.     case TIMER_EXPIRE:
  290.         printf("Timer expired ");
  291.     }
  292.     printf("SRTT %ld ms Mean dev %ld ms\n",tcb->srtt,tcb->mdev);
  293.     fflush(stdout);
  294. }
  295.  
  296.